home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / dosvar.zip / DOSVAR.DOC < prev    next >
Text File  |  1995-01-01  |  3KB  |  96 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                                         DOSVAR
  8.  
  9.  
  10.  
  11.                                 Batch Variable Modifier
  12.  
  13.  
  14.  
  15.                                      User's Manual
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.                                    Copyright (C) 1994
  25.  
  26.                                           and
  27.  
  28.                                   All Rights Reserved
  29.  
  30.                                            by
  31.  
  32.                                 -- PINNACLE SOFTWARE --
  33.                                 CP 386 Ville Mont Royal
  34.                                 Quebec, Canada, H3P 3C6
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.     ===========================================================================
  42.                                  What Is DosVar?
  43.     ===========================================================================
  44.  
  45.  
  46.     DosVar is a program that will modify variables in a batch file. It supports
  47.     substrings, justification, zero-stripping and other useful functions.
  48.  
  49.  
  50.  
  51.     ===========================================================================
  52.                                Installing DosVar
  53.     ===========================================================================
  54.  
  55.  
  56.     If you are simply trying DOSVAR, you can do so in the current directory,
  57.     using the START.BAT program to demonstrate the techniques.
  58.  
  59.     For daily use, the DOSVAR.EXE program and the associated files (such as
  60.     START.BAT) should be placed in a DOS PATH directory.  For an explanation of
  61.     the DOS PATH, see your DOS manual.
  62.  
  63.  
  64.  
  65.     ===========================================================================
  66.                                 How DosVar Works
  67.     ===========================================================================
  68.  
  69.  
  70.     DosVar creates a batch file named SETVAR.BAT, which does the actual setting
  71.     of the variable.  To use DosVar, include it in a batch file, with the
  72.     appropriate parameters, followed by a CALL to the batch file SETVAR.BAT.
  73.     For example:
  74.  
  75.     @ECHO OFF
  76.     DOSVAR /vABCDEFG /nMYVAR /jR /o10 /c$
  77.     CALL SETVAR.BAT
  78.     ECHO Expected result: $$$ABCDEFG
  79.     ECHO Actual result:   %MYVAR%
  80.  
  81.     For other examples, run START.BAT.
  82.                                       
  83.  
  84.  
  85.     ===========================================================================
  86.                                      Syntax
  87.     ===========================================================================
  88.  
  89.     For an explanation of DOSVAR's syntax, start up DOSVAR like this:
  90.  
  91.     DOSVAR /?
  92.  
  93.     Alternatively, you can run START.BAT.
  94.  
  95.  
  96.